Operator constructor

const Operator({
  1. Key? key,
  2. double width = 70,
  3. double height = 40,
  4. required String imagePath,
})

Implementation

const Operator(
    {super.key, this.width = 70, this.height = 40, required this.imagePath});