TextFieldDesign constructor

const TextFieldDesign({
  1. Color text = Colors.white,
  2. Color border = _placeHolderColor,
  3. Color hint = _placeHolderColor,
  4. Color fill = Colors.black,
})

Implementation

const TextFieldDesign({
  this.text = Colors.white,
  this.border = _placeHolderColor,
  this.hint = _placeHolderColor,
  this.fill = Colors.black,
});