SendSMS constructor

const SendSMS({
  1. Key? key,
  2. required SendSMSValueCallback? onTap,
  3. Decoration? decoration,
  4. Duration duration = const Duration(seconds: 60),
  5. EdgeInsetsGeometry? margin,
  6. EdgeInsetsGeometry? padding,
  7. required SendStateBuilder stateBuilder,
  8. SendStateChanged? onStateChanged,
})

Implementation

const SendSMS(
    {super.key,
    required this.onTap,
    this.decoration,
    this.duration = const Duration(seconds: 60),
    this.margin,
    this.padding,
    required this.stateBuilder,
    this.onStateChanged});