fromMap method

  1. @protected
void fromMap(
  1. Map<String, dynamic> props
)

Initialize properties with map

Implementation

@protected
void fromMap(Map<String, dynamic> props) {
  for (var propertyName in props.keys.toList()) {
    properties[propertyName] = props[propertyName];
  }
}