setTranslucent static method

Future<bool> setTranslucent(
  1. bool translucent
)

Implementation

static Future<bool> setTranslucent(bool translucent) async {
  if (kIsWeb) return false;
  return await _channel
      .invokeMethod("setTranslucent", {'translucent': translucent});
}