setTheme method

  1. @override
Future<bool?> setTheme(
  1. String themeId
)
override

Implementation

@override
Future<bool?> setTheme(String themeId) async {
  return await methodChannel.invokeMethod<bool>('setTheme', {
    'themeId': themeId,
  });
}