fetchPathProperties method

Future<Map?> fetchPathProperties(
  1. String id,
  2. RequestType type,
  3. PMFilter? optionGroup
)

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(),
    },
  );
}