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