copyWith method

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

Implementation

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