Window constructor

Window(
  1. String title
)

Implementation

Window(String title) {
  _title = title;
  _init();
  initialize();
}