getDocument method
Implementation
Future<SyneriseResult<Map<String, Object>>> getDocument(
String slugName) async {
return await SyneriseInvocation(methodChannel)
.invokeSDKApiMethod<Map<String, Object>>("Content/getDocument",
parameters: slugName,
isMappable: true,
genericTypeKey: GenericTypeKey.mapStringObject);
}