ExposureProgramButton constructor Null safety

const ExposureProgramButton(
  1. {Key? key,
  2. ButtonStyle? style,
  3. double width = 300,
  4. double height = 40,
  5. String label = 'Exposure Program'}
)

Implementation

const ExposureProgramButton(
    {Key? key,
    this.style,
    this.width = 300,
    this.height = 40,
    this.label = 'Exposure Program'})
    : super(key: key);