toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final code = this.code;
  final countryCode = this.countryCode;
  final countryDartId = this.countryDartId;
  final id = this.id;
  final kind = this.kind;
  return {
    'code': ?code,
    'countryCode': ?countryCode,
    'countryDartId': ?countryDartId,
    'id': ?id,
    'kind': ?kind,
  };
}