listFromJson static method

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

Implementation

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