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