BlueDatePicker constructor

BlueDatePicker({
  1. Key? key,
  2. String? label,
  3. bool? showLabel,
})

Implementation

BlueDatePicker({Key? key, String? label, bool? showLabel})
    : _label = label,
      _showLabel = showLabel ?? true,
      super(key: key);