asyncFromJson static method

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

Implementation

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