postRaw method
Future<Uint8List>
postRaw(
- APIEndpoint endpoint,
- Uint8List payload, {
- required bool requiresAuth,
override
Perform a raw POST request (returns raw bytes).
Implementation
@override
Future<Uint8List> postRaw(
APIEndpoint endpoint,
Uint8List payload, {
required bool requiresAuth,
}) async {
return _postRawWithPath(endpoint.path, payload, requiresAuth: requiresAuth);
}