setTermsOfServiceUrl static method

void setTermsOfServiceUrl(
  1. String urlString
)

The URL of your company’s terms of service, as a string. This is optional; you can enable the Terms Flow with or without it.

Implementation

static void setTermsOfServiceUrl(String urlString) {
  channel.invokeMethod('setTermsOfServiceUrl', {
    'value': urlString,
  });
}