InlineTextField constructor
const
InlineTextField({})
Implementation
const InlineTextField({
Key? key,
this.child,
this.decoration,
required this.onEditingComplete,
this.style,
this.styleEditing,
this.text,
}) : assert(!(style != null && text == null),
'Declaring style whithout text is not supported.'),
assert(!(child != null && text != null),
'Declaring both child and text is not supported.'),
super(key: key);