copyWithWrapped method
Implementation
FwCoreModulesAdministratorGroupLookupGroupResponse copyWithWrapped({
Wrapped<String?>? groupId,
Wrapped<String?>? name,
}) {
return FwCoreModulesAdministratorGroupLookupGroupResponse(
groupId: (groupId != null ? groupId.value : this.groupId),
name: (name != null ? name.value : this.name),
);
}