Country.fromJson constructor

Country.fromJson(
  1. Map json_
)

Implementation

Country.fromJson(core.Map json_)
    : this(
        countryCode: json_['countryCode'] as core.String?,
        dartId: json_['dartId'] as core.String?,
        kind: json_['kind'] as core.String?,
        name: json_['name'] as core.String?,
        sslEnabled: json_['sslEnabled'] as core.bool?,
      );