actualAppTheme property
Get the actual images & texts render theme
This will return the actual used theme ( dark /light ) when SDK theme was set to automatic
Returns
- The app theme, AppTheme object
Throws
- An exception if it fails.
Implementation
static AppTheme get actualAppTheme {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getActualTheme',
);
return AppThemeExtension.fromId(resultString['result']);
}