CustomResetButton constructor

CustomResetButton({
  1. Key? key,
  2. bool? loading = false,
  3. String? buttonText,
  4. double? height,
  5. double? width,
})

Implementation

CustomResetButton({
  Key? key,
  this.loading = false,
  this.buttonText,
  this.height,
  this.width,
}) : super(key: key);