getAuthUrl static method

Uri getAuthUrl()

Implementation

static Uri getAuthUrl() {
  Uri uri = Uri(
      scheme: 'https',
      host: baseSafaricomUrl,
      path: '/oauth/v1/generate',
      queryParameters: <String, String>{'grant_type': 'client_credentials'});
  return uri;
}