asyncFromJson static method

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

Implementation

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