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