copyWith method
Implementation
DashboardGadgetPosition copyWith(
{int? theColumnPositionOfTheGadget, int? theRowPositionOfTheGadget}) {
return DashboardGadgetPosition(
theColumnPositionOfTheGadget:
theColumnPositionOfTheGadget ?? this.theColumnPositionOfTheGadget,
theRowPositionOfTheGadget:
theRowPositionOfTheGadget ?? this.theRowPositionOfTheGadget,
);
}