listFromJson static method

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

Implementation

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