Wallet constructor

Wallet({
  1. int? accountId,
  2. String? partnerId,
  3. double? balance,
  4. int? accountType,
  5. dynamic remarks,
  6. int? status,
})

Implementation

Wallet(
    {this.accountId,
    this.partnerId,
    this.balance,
    this.accountType,
    this.remarks,
    this.status});