copyWith method

FwStandardModulesAdministratorGroupCopySecurityNodeRequest copyWith({
  1. String? fromGroupId,
  2. String? toGroupIds,
  3. String? securityId,
})

Implementation

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