get<T> abstract method

Future<Doc<T>> get<T>({
  1. required String id,
  2. bool attachments = false,
  3. bool attEncodingInfo = false,
  4. List<String>? attsSince,
  5. bool conflicts = false,
  6. bool deletedConflicts = false,
  7. bool latest = false,
  8. bool localSeq = false,
  9. bool meta = false,
  10. String? rev,
  11. bool revs = false,
  12. bool revsInfo = false,
  13. required T fromJsonT(
    1. Map<String, dynamic> json
    ),
})

Implementation

Future<Doc<T>> get<T>(
    {required String id,
    bool attachments = false,
    bool attEncodingInfo = false,
    List<String>? attsSince,
    bool conflicts = false,
    bool deletedConflicts = false,
    bool latest = false,
    bool localSeq = false,
    bool meta = false,
    String? rev,
    bool revs = false,
    bool revsInfo = false,
    required T Function(Map<String, dynamic> json) fromJsonT});