asyncFromJson static method

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

Implementation

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