asyncFromJson static method

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

Implementation

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