RemoteException constructor

const RemoteException({
  1. required String message,
  2. Object? exception,
})

Creates a remote exception from the message thrown.

Implementation

const RemoteException({required this.message, this.exception});