factory AgeRange.fromJson(Map<String, dynamic> json) { return AgeRange( high: json['High'] as int?, low: json['Low'] as int?, ); }