AccountInfo constructor

AccountInfo({
  1. required AccountData accountData,
  2. required AccountFlags accountFlags,
  3. required int? ledgerCurrentIndex,
  4. required String? status,
  5. required bool validated,
})

Implementation

AccountInfo({
  required this.accountData,
  required this.accountFlags,
  required this.ledgerCurrentIndex,
  required this.status,
  required this.validated,
});