getAll method

Future<List<Account>> getAll()

Gets all available accounts.

Implementation

Future<List<Account>> getAll() async => JsonHelpers.decodeList(
  await _channel.invokeMethod<List>('accounts.getAll'),
  Account.fromJson,
);