copyWith method

Component copyWith({
  1. Map<TypeScreen, Organization>? organizations,
})

Implementation

Component copyWith({
  Map<TypeScreen, Organization>? organizations,
}) {
  return Component(
    style: this.style,
    child: this.child,
    organizations: organizations ?? this.organizations,
  );
}