copyWith method

AvailableDashboardGadget copyWith({
  1. String? moduleKey,
  2. String? title,
  3. String? uri,
})

Implementation

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