updateStatus method
void
updateStatus({})
Implementation
void updateStatus({
bool? hovered,
bool? focused,
bool? touched,
bool? dirty,
bool? empty,
bool? full,
bool? edited,
bool? submitted,
FetchStatus? fetch,
}) {
status.value = status.value.copyWith(
hovered: hovered,
focused: focused,
touched: touched,
dirty: dirty,
empty: empty ?? isEmpty,
full: full ?? isFull,
edited: edited,
submitted: submitted,
fetch: fetch,
);
}