copyWith method

AccountAccess copyWith({
  1. String? uniqueId,
  2. bool? authorized,
  3. AccountProductAccessNullable? accountProductAccess,
})

Implementation

AccountAccess copyWith(
    {String? uniqueId,
    bool? authorized,
    AccountProductAccessNullable? accountProductAccess}) {
  return AccountAccess(
      uniqueId: uniqueId ?? this.uniqueId,
      authorized: authorized ?? this.authorized,
      accountProductAccess:
          accountProductAccess ?? this.accountProductAccess);
}