asyncFromJson static method

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

Implementation

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