hasShadow method

Future<bool> hasShadow()

Returns bool - Whether the window has a shadow. On Windows, always returns true unless window is frameless.

@platforms macos,windows

Implementation

Future<bool> hasShadow() async {
  return await _channel.invokeMethod('hasShadow');
}