copyWith method

Implementation

AvailableDashboardGadgetsResponse copyWith(
    {List<AvailableDashboardGadget>? gadgets}) {
  return AvailableDashboardGadgetsResponse(
    gadgets: gadgets ?? this.gadgets,
  );
}