applyTheme method

  1. @override
Future<void> applyTheme({
  1. String? appbarColor,
  2. String? accentColor,
  3. String? backgroundColor,
  4. String? stickyButtonColor,
})
override

Implementation

@override
Future<void> applyTheme({
  String? appbarColor,
  String? accentColor,
  String? backgroundColor,
  String? stickyButtonColor,
}) async {
  await methodChannel.invokeMethod('applyTheme', {
    'appbarColor': appbarColor,
    'accentColor': accentColor,
    'backgroundColor': backgroundColor,
    'stickyButtonColor': stickyButtonColor,
  });
}