AccountsDataModel constructor

const AccountsDataModel({
  1. required List<AccountEntity> accounts,
})

Implementation

const AccountsDataModel({
  required List<AccountEntity> accounts,
}) : super(
        accounts: accounts,
      );