copyWith method

GetStarRevenueStatistics copyWith({
  1. MessageSender? ownerId,
  2. bool? isDark,
})

Implementation

GetStarRevenueStatistics copyWith({MessageSender? ownerId, bool? isDark}) =>
    GetStarRevenueStatistics(
      ownerId: ownerId ?? this.ownerId,
      isDark: isDark ?? this.isDark,
    );