ServiceRemoteException constructor

ServiceRemoteException([
  1. String message = "",
  2. Exception? innerException = null,
  3. StackTrace? innerStackTrace = null
])
ServiceRemoteException Constructor. Error message text. Inner exception.

Implementation

// ignore: avoid_init_to_null
ServiceRemoteException(
    [this.message = "",
    this.innerException = null,
    this.innerStackTrace = null]);