setNavigationBarTheme method

  1. @override
Future<bool?> setNavigationBarTheme(
  1. int navigationBarTheme
)
override

Implementation

@override
Future<bool?> setNavigationBarTheme(int navigationBarTheme) async {
  return await methodChannel.invokeMethod<bool>("setNavigationBarTheme", {
    "navigationBarTheme": navigationBarTheme,
  });
}