copyWith method
Implementation
LceLoading<DATA> copyWith({ DATA? data, bool? dataIsValid, LoadingType? type}) {
return LceLoading(
data ?? this.data,
dataIsValid ?? this.dataIsValid,
type ?? this.type
);
}
LceLoading<DATA> copyWith({ DATA? data, bool? dataIsValid, LoadingType? type}) {
return LceLoading(
data ?? this.data,
dataIsValid ?? this.dataIsValid,
type ?? this.type
);
}