copyWith method
GramRevenueStatistics
copyWith({
- StatisticalGraph? revenueByDayGraph,
- GramRevenueStatus? status,
- double? usdRate,
Implementation
GramRevenueStatistics copyWith({
StatisticalGraph? revenueByDayGraph,
GramRevenueStatus? status,
double? usdRate,
}) => GramRevenueStatistics(
revenueByDayGraph: revenueByDayGraph ?? this.revenueByDayGraph,
status: status ?? this.status,
usdRate: usdRate ?? this.usdRate,
);