copyWith method
Implementation
RequestPermissionResponse copyWith({
Object? outcome = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => RequestPermissionResponse(
outcome: identical(outcome, _acpCopyWithAbsent)
? this.outcome
: outcome as RequestPermissionOutcome,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);