hydrate method

Future<Json> hydrate([
  1. List<StoreReference>? refs
])

Implementation

Future<Json> hydrate([List<StoreReference>? refs]) async {
  final response = await _sendMessage(
    HydrateMessageRequest(refs?.map((ref) => ref.path).toList()),
  );
  return response.data;
}