LocusError.networkError constructor
Network error during sync.
Implementation
factory LocusError.networkError({String? message, Object? originalError}) =>
LocusError(
type: LocusErrorType.networkError,
message: message ?? 'Network error during sync',
originalError: originalError,
isRecoverable: true,
suggestedRecovery: RecoveryAction.retry,
);