copyWith method
DashboardGadgetUpdateRequest
copyWith({
- String? color,
- DashboardGadgetPosition? position,
- String? title,
Implementation
DashboardGadgetUpdateRequest copyWith(
{String? color, DashboardGadgetPosition? position, String? title}) {
return DashboardGadgetUpdateRequest(
color: color ?? this.color,
position: position ?? this.position,
title: title ?? this.title,
);
}