actualAppTheme property

AppTheme get actualAppTheme

Get the actual images & texts render theme

This will return the actual used theme ( dark /light ) when SDK theme was set to automatic

Returns

Throws

  • An exception if it fails.

Implementation

static AppTheme get actualAppTheme {
  final OperationResult resultString = staticMethod(
    'SdkSettings',
    'getActualTheme',
  );

  return AppThemeExtension.fromId(resultString['result']);
}