asyncFromJson static method

Future<DestinyEntitySearchResultResponse> asyncFromJson(
  1. Map<String, dynamic> json
)

Implementation

static Future<DestinyEntitySearchResultResponse> asyncFromJson(Map<String, dynamic> json) =>
	compute<Map<String, dynamic>, DestinyEntitySearchResultResponse>((json)=>DestinyEntitySearchResultResponse.fromJson(json), json);