asyncFromJson static method

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

Implementation

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