PlayerSearch.fromMap constructor

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

Decodes PlayerSearch object from json map

Implementation

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