asyncFromJson static method

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

Implementation

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