setClosable method

Future<void> setClosable(
  1. bool closable
)

Sets whether the window can be closed.

Implementation

Future<void> setClosable(bool closable) {
  return _platform.setClosable(_id, closable);
}