uploadCustomPlatform method
Implementation
Future<WebPresenterRestResponse> uploadCustomPlatform(
String filename,
String xml, {
bool compact = true,
}) =>
request(
'PUT',
'/livestreams/customPlatforms/${_segment(filename)}',
body: compact ? StreamingXmlDocument.compact(xml) : xml,
);