AuthError constructor

AuthError(
  1. {AuthError_ErrorType? errorType}
)

Implementation

factory AuthError({
  AuthError_ErrorType? errorType,
}) {
  final _result = create();
  if (errorType != null) {
    _result.errorType = errorType;
  }
  return _result;
}