class ResponseModel<T>{
final bool? status;
final String? error;
final T? data;
ResponseModel({this.status, this.data, this.error});
}