copyWith method

ProductAccess copyWith({
  1. bool? statements,
  2. bool? identity,
  3. bool? auth,
  4. bool? transactions,
})

Implementation

ProductAccess copyWith(
    {bool? statements, bool? identity, bool? auth, bool? transactions}) {
  return ProductAccess(
      statements: statements ?? this.statements,
      identity: identity ?? this.identity,
      auth: auth ?? this.auth,
      transactions: transactions ?? this.transactions);
}