listFromJson static method
Implementation
static List<StrategyAttributeCountryName> listFromJson(List<dynamic>? json) =>
json == null
? <StrategyAttributeCountryName>[]
: json.map((value) => fromJson(value)).toList().fromNull();
static List<StrategyAttributeCountryName> listFromJson(List<dynamic>? json) =>
json == null
? <StrategyAttributeCountryName>[]
: json.map((value) => fromJson(value)).toList().fromNull();