TrackTargetedCountry.fromJson constructor

TrackTargetedCountry.fromJson(
  1. Map json_
)

Implementation

TrackTargetedCountry.fromJson(core.Map json_)
    : this(
        countryCode: json_.containsKey('countryCode')
            ? json_['countryCode'] as core.String
            : null,
      );