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