queryRecoverableList method

Future<List<RecoveryInfo>> queryRecoverableList(
  1. List<String> addresses
)

Implementation

Future<List<RecoveryInfo>> queryRecoverableList(
    List<String> addresses) async {
  final List res = await service.queryRecoverableList(addresses);
  return res
      .map((e) => RecoveryInfo.fromJson(Map<String, dynamic>.of(e ?? {})))
      .toList();
}