WindowBorder constructor

WindowBorder({
  1. Key? key,
  2. required Widget child,
  3. required Color color,
  4. double? width,
})

Implementation

WindowBorder({Key? key, required this.child, required this.color, this.width})
    : super(key: key);