BoxInfo constructor

const BoxInfo({
  1. required Offset offset,
  2. required double width,
  3. required double height,
})

Implementation

const BoxInfo({
  required this.offset,
  required this.width,
  required this.height,
});