asyncFromJson static method

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

Implementation

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