asyncFromJson static method

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

Implementation

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