register method
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 );
}