TeamSearch.fromMap constructor

TeamSearch.fromMap(
  1. Map<String, dynamic> json
)

Decodes TeamSearch object from json map

Implementation

factory TeamSearch.fromMap(Map<String, dynamic> json) => TeamSearch(
      items: json['items'] == null
          ? null
          : List<Team>.from(json['items'].map((x) => Team.fromMap(x))),
      totalItems: json['total_items'] == null ? null : json['total_items'],
      currentItems:
          json['current_items'] == null ? null : json['current_items'],
    );