userInterfaceStyle property
Constants indicating the interface style for the OAuth login page.
The default is UserInterfaceStyle.unspecified.
Implementation
UserInterfaceStyle get userInterfaceStyle {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_OAuthUserConfiguration_getUserInterfaceStyle(
_handle,
errorHandler,
);
});
return UserInterfaceStyle._fromCoreValue(
coreValue,
);
}