getNavigationBarColor static method

Future<Color?> getNavigationBarColor()

Android only

Get the navigation bar background color.

Implementation

static Future<Color?> getNavigationBarColor() =>
    _channel.invokeMethod('getnavigationbarcolor').then((dynamic value) {
      return value == null ? null : Color(value);
    });