AccountAccess constructor

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

Implementation

AccountAccess({
  required this.uniqueId,
  this.authorized,
  this.accountProductAccess,
});