copyWith method

RequestPermissionResponse copyWith({
  1. Object? outcome = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

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?,
);