copyWith method

StoredCachedRow copyWith({
  1. String? accountKey,
  2. String? tableId,
  3. String? rowKey,
  4. String? valuesJson,
  5. DateTime? updatedAt,
})

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,
);