copyWith method
Implementation
FwStandardModulesAdministratorGroupCopySecurityNodeRequest copyWith({
String? fromGroupId,
String? toGroupIds,
String? securityId,
}) {
return FwStandardModulesAdministratorGroupCopySecurityNodeRequest(
fromGroupId: fromGroupId ?? this.fromGroupId,
toGroupIds: toGroupIds ?? this.toGroupIds,
securityId: securityId ?? this.securityId,
);
}