InputThemeData constructor

const InputThemeData({
  1. EdgeInsetsGeometry contentPadding = const EdgeInsets.only(left: 12),
  2. InputBorder border = InputBorder.none,
  3. TextStyle hintStyle = const TextStyle(fontSize: 16, color: Color(0xFF9E9E9E)),
  4. String? hintText = "Enter your phone number",
  5. TextStyle style = const TextStyle(fontSize: 16),
  6. String? mask = "### #### ###",
  7. String obscuringCharacter = '•',
  8. bool obscureText = false,
})

Implementation

const InputThemeData({
  this.contentPadding = const EdgeInsets.only(left: 12),
  this.border = InputBorder.none,
  this.hintStyle = const TextStyle(fontSize: 16, color: Color(0xFF9E9E9E)),
  this.hintText = "Enter your phone number",
  this.style = const TextStyle(fontSize: 16),
  this.mask = "### #### ###",
  this.obscuringCharacter = '•',
  this.obscureText = false,
});