copyWithValue method
Implementation
StateSnapshot<V> copyWithValue(
V value, {
required Source source,
bool? isLoading,
bool includeError = true,
}) =>
StateSnapshot._raw(
value,
includeError ? error : null,
isLoading: isLoading ?? this.isLoading,
source: source,
);