configureSafeArea static method

Future<void> configureSafeArea(
  1. int topHeight,
  2. int bottomHeight,
  3. String topSafeAreaColor,
  4. String bottomSafeAreaColor,
)

Implementation

static Future<void> configureSafeArea(int topHeight, int bottomHeight,
    String topSafeAreaColor, String bottomSafeAreaColor) async {
  return await _channel.invokeMethod('configureSafeArea', <String, dynamic>{
    'topHeight': topHeight,
    'bottomHeight': bottomHeight,
    'topSafeAreaColor': topSafeAreaColor,
    'bottomSafeAreaColor': bottomSafeAreaColor
  });
}