listFromJson static method

List<GeneratorParams> listFromJson(
  1. List json
)

Implementation

static List<GeneratorParams> listFromJson(List<dynamic> json) {
  return json.map((value) => GeneratorParams.fromJson(value)).toList();
}