changeTheme method

Future<void> changeTheme(
  1. bool isDark
)

Implementation

Future<void> changeTheme(bool isDark) async {
  return await channel.invokeMethod('changeTheme', {'isDark': isDark});
}