fetchPathProperties method
Implementation
Future<Map?> fetchPathProperties(
String id,
RequestType type,
PMFilter optionGroup,
) {
return _channel.invokeMethod(
PMConstants.mFetchPathProperties,
<String, dynamic>{
'id': id,
'timestamp': 0,
'type': type.value,
'option': optionGroup.toMap(),
},
);
}