class Senior { int? status; Senior({this.status}); factory Senior.fromJson(Map json) => Senior( status: json['status'] as int?, ); }