listFromJson static method

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

Implementation

static List<FeatureRolloutStrategyAttribute> listFromJson(
    List<dynamic>? json) {
  return json == null
      ? <FeatureRolloutStrategyAttribute>[]
      : json
          .map((value) => FeatureRolloutStrategyAttribute.fromJson(value))
          .toList();
}