copyWith method
Implementation
TableSyncState copyWith({
Map<String, TableSyncGroupState>? groups,
bool? syncingAll,
}) {
return TableSyncState(
groups: groups ?? this.groups,
syncingAll: syncingAll ?? this.syncingAll,
);
}
TableSyncState copyWith({
Map<String, TableSyncGroupState>? groups,
bool? syncingAll,
}) {
return TableSyncState(
groups: groups ?? this.groups,
syncingAll: syncingAll ?? this.syncingAll,
);
}