listFromJson static method

List<StrategyAttributeWellKnownNames> listFromJson(
  1. List? json
)

Implementation

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