updateValue method
void
updateValue({})
Implementation
void updateValue(
{bool? fillColor,
int? maxLines,
TextAlign? textAlign,
bool? hasFocus,
bool? editingMode,
bool? hasStickers,
bool? isEditing,
bool? stickerPickerView,
bool? colorPickerVisibility}) {
if (!(hasFocus ?? false)) {
SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []);
}
value = value.copyWith(
fillColor: fillColor,
maxLines: maxLines,
textAlign: textAlign,
hasFocus: hasFocus,
editingMode: editingMode,
hasStickers: hasStickers,
isEditing: isEditing,
stickerPickerView: stickerPickerView,
colorPickerVisibility: colorPickerVisibility,
);
}