asyncFromJson static method

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

Implementation

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