copyWith method
Implementation
StoredCachedRow copyWith({
String? accountKey,
String? tableId,
String? rowKey,
String? valuesJson,
DateTime? updatedAt,
}) => StoredCachedRow(
accountKey: accountKey ?? this.accountKey,
tableId: tableId ?? this.tableId,
rowKey: rowKey ?? this.rowKey,
valuesJson: valuesJson ?? this.valuesJson,
updatedAt: updatedAt ?? this.updatedAt,
);