copyWith method
Implementation
AvailableDashboardGadget copyWith(
{String? moduleKey, String? title, String? uri}) {
return AvailableDashboardGadget(
moduleKey: moduleKey ?? this.moduleKey,
title: title ?? this.title,
uri: uri ?? this.uri,
);
}