getFile abstract method

  1. @Get(path: "/v1/files/{file_id}")
Future<Response<File>> getFile({
  1. @Path("file_id") required String fileId,
})

Returns information about a specific file.

Implementation

@Get(path: "/v1/files/{file_id}")
Future<Response<File>> getFile({
  @Path("file_id") required String fileId,
});