copyWith method
Implementation
UsageUpdate copyWith({
Object? used = _acpCopyWithAbsent,
Object? size = _acpCopyWithAbsent,
Object? cost = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => UsageUpdate(
used: identical(used, _acpCopyWithAbsent) ? this.used : used as int,
size: identical(size, _acpCopyWithAbsent) ? this.size : size as int,
cost: identical(cost, _acpCopyWithAbsent) ? this.cost : cost as Cost?,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);