Meta.fromJson constructor

Meta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Meta.fromJson(Map<String, dynamic> json) {
  latitude = json['latitude'];
  longitude = json['longitude'];
  timezone = json['timezone'];
  method = json['method'] != null ? Method.fromJson(json['method']) : null;
  latitudeAdjustmentMethod = json['latitudeAdjustmentMethod'];
  midnightMode = json['midnightMode'];
  school = json['school'];
}