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