DigitalpayeInputField constructor

const DigitalpayeInputField({
  1. Key? key,
  2. required Widget child,
  3. double? height,
  4. String? label,
})

Implementation

const DigitalpayeInputField({
  Key? key,
  required this.child,
  this.height,
  this.label,
}) : super(key: key);