listFromJson static method

List<ErrorDetails> listFromJson(
  1. List json
)

Implementation

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