asyncFromJson static method

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

Implementation

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