AccountInfo constructor

AccountInfo({
  1. required String accountId,
  2. required String name,
})

Implementation

AccountInfo({
  required this.accountId,
  required this.name,
});