asyncFromJson static method

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

Implementation

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