copyWith method
Implementation
StatisticsItem copyWith({ String? totalOrders,
String? totalAmount,
String? title,
}) => StatisticsItem( totalOrders: totalOrders ?? _totalOrders,
totalAmount: totalAmount ?? _totalAmount,
title: title ?? _title,
);