AwsDateField constructor

const AwsDateField({
  1. Key? key,
  2. required DateTime dateTime,
  3. InputDecoration? decoration,
  4. String? hint,
  5. String? label,
  6. void onTap()?,
})

Implementation

const AwsDateField(
    {Key? key,
    required DateTime dateTime,
    InputDecoration? decoration,
    String? hint,
    final String? label,
    void Function()? onTap})
    : _dateTime = dateTime,
      _decoration = decoration,
      _hint = hint,
      _label = label,
      _onTap = onTap,
      super(key: key);