Token constructor

Token({
  1. BankAccount? bankAccount,
  2. String? clientIp,
  3. int? created,
  4. String? id,
  5. bool? livemode,
  6. String? object,
  7. String? type,
  8. bool? used,
})

Implementation

Token(
    {this.bankAccount,
    this.clientIp,
    this.created,
    this.id,
    this.livemode,
    this.object,
    this.type,
    this.used});