asyncFromJson static method

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

Implementation

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