bulkGet<T> abstract method

Future<BulkGetResponse<T>> bulkGet<T>({
  1. required BulkGetRequest body,
  2. bool revs = false,
  3. required T fromJsonT(
    1. Map<String, dynamic> json
    ),
})

Implementation

Future<BulkGetResponse<T>> bulkGet<T>(
    {required BulkGetRequest body,
    bool revs = false,
    required T Function(Map<String, dynamic> json) fromJsonT});