asyncFromJson static method

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

Implementation

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