EditTextFieldStyle constructor

const EditTextFieldStyle({
  1. TextStyle editTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff181818), fontSize: 14),
  2. TextStyle editTextHintStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff959595), fontSize: 12),
  3. TextStyle? titleStyle,
})

Implementation

const EditTextFieldStyle(
    {this.editTextStyle = const TextStyle(
        fontWeight: FontWeight.normal,
        color: Color(0xff181818),
        fontSize: 14),
    this.editTextHintStyle = const TextStyle(
        fontWeight: FontWeight.normal,
        color: Color(0xff959595),
        fontSize: 12),
    this.titleStyle});