fromMap method

  1. @override
dynamic fromMap (
  1. Map map
)
override

map -> dynamic

Implementation

@override
fromMap(Map map) {
  return new BMFUserLocation(
      updating: map['updating'],
      location: BMFLocation.location().fromMap(map['location']),
      heading: BMFHeading.heading().fromMap(map['heading']),
      title: map['title'],
      subtitle: map['subtitle']);
}