asyncFromJson static method

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

Implementation

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