createRequestPlatformUrl function

String createRequestPlatformUrl(
  1. String host,
  2. String path
)

Implementation

String createRequestPlatformUrl(String host, String path) {
  return Uri(scheme: "zgMatter", host: host, path: path).toString();
}