copyWith method
Implementation
RequestPermissionOutcomeSelected copyWith({
Object? outcome = _acpCopyWithAbsent,
Object? optionId = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => RequestPermissionOutcomeSelected(
outcome: identical(outcome, _acpCopyWithAbsent)
? this.outcome
: outcome as String,
optionId: identical(optionId, _acpCopyWithAbsent)
? this.optionId
: optionId as PermissionOptionId,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);