copyWithWrapped method

Implementation

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