register method

  1. @override
Future<void> register(
  1. String url,
  2. String clientId,
  3. String username,
  4. String password,
)
override

Implementation

@override
Future<void> register(String url, String clientId, String username, String password) async {
  Map<String, String> map = {
        'url': url,
        'clientId': clientId,
        'username': username,
        'password': password,
        };
  await _methodChannel
      .invokeMethod<void>('register',map );
}