authorsFromJSON static method

List<String>? authorsFromJSON(
  1. dynamic json
)

Implementation

static List<String>? authorsFromJSON(json) {
  if (json is List<Map>) json.map((e) => e['key'] as String).toList();
}