Window constructor

Window({
  1. required int bottom,
  2. required int top,
  3. required int right,
  4. required int left,
})

Implementation

Window(
    {required this.bottom,
    required this.top,
    required this.right,
    required this.left});