RxStatus.error constructor
      
      RxStatus.error([ 
    
    
- String? message
Implementation
factory RxStatus.error([String? message]) {
  return RxStatus._(isError: true, errorMessage: message);
}factory RxStatus.error([String? message]) {
  return RxStatus._(isError: true, errorMessage: message);
}