asyncFromJson static method

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

Implementation

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