toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final locationInfo = this.locationInfo;
  final locationName = this.locationName;
  final locationType = this.locationType;
  return {
    'locationInfo': ?locationInfo,
    'locationName': ?locationName,
    'locationType': ?locationType,
  };
}