resetDesktopMaxWindowSize method

Future<bool> resetDesktopMaxWindowSize()

Implementation

Future<bool> resetDesktopMaxWindowSize() async {
  if (!Internal.supportPlatformDesktop) return false;
  final bool? state = await Internal.curiosityChannel
      .invokeMethod<bool?>('resetMaxWindowSize');
  return state ?? false;
}