createMDMAuthCredentials static method

dynamic createMDMAuthCredentials(
  1. String username,
  2. String password,
  3. String clientID,
  4. String clientSecret,
)

Implementation

static createMDMAuthCredentials(
    String username, String password, String clientID, String clientSecret) {
  _channel.invokeMethod('createMDMAuthCredentials', {
    'username': username,
    'password': password,
    'clientID': clientID,
    'clientSecret': clientSecret
  });
}