TextInputLayoutDelegate constructor

TextInputLayoutDelegate({
  1. required Map<TextLayoutItem, Widget> children,
  2. required Size? placeHolderTitleHeight,
  3. required double animation,
  4. required TextAlign textAlign,
})

Implementation

TextInputLayoutDelegate({
  required this.children,
  required this.placeHolderTitleHeight,
  required this.animation,
  required this.textAlign,
}) : super(key: ValueKey(children.hashCode));