url method

String url(
  1. {String operation = "QueryProfile",
  2. String overrideProfile = ""}
)

Get mcp request url

Implementation

String url({
  String operation = "QueryProfile",
  String overrideProfile = "",
}) {
  return "$_baseURL/$accountId/$route/$operation?profileId=${overrideProfile == "" ? profileId : overrideProfile}";
}