BridgeError.internalError constructor

BridgeError.internalError([
  1. String? detail
])

Implementation

factory BridgeError.internalError([String? detail]) => BridgeError(
  code: ErrorCode.internalError,
  message: detail ?? 'Internal error',
);