RamAccountInfo constructor

RamAccountInfo({
  1. required String accountId,
  2. String? accountName,
  3. String? appKey,
  4. int? accountStatus,
  5. RamAccountPolicy? policy,
})

Implementation

RamAccountInfo({
  required this.accountId,
  this.accountName,
  this.appKey,
  this.accountStatus,
  this.policy,
});