class Area { String? name; Area({this.name}); factory Area.fromJson(Map json) => Area( name: json['name'] as String?, ); }