asyncFromJson static method

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

Implementation

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