asyncFromJson static method

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

Implementation

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