AgeRange.fromJson constructor

AgeRange.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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