getAllFiles method

Future<List<CarpFileResponse>> getAllFiles([
  1. String? studyId
])

Get all file objects in the study.

studyId can be omitted if specified as part of this service's study.

Implementation

Future<List<CarpFileResponse>> getAllFiles([String? studyId]) async =>
    await queryFiles(null, studyId: studyId);