getFilePublic method
Get a public file
Permissions No permissions required.
Parameters:
Implementation
Future<void> getFilePublic(
String fileId,
String h,
) async {
final response = await getFilePublicWithHttpInfo(
fileId,
h,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
}
}