login method

Future<void> login(
  1. String accountId
)

Sets the account ID.

login DO NOT upload any data to TA server.

Implementation

Future<void> login(String accountId) async {
  return await _channel.invokeMethod<void>('login',
      <String, dynamic>{'accountId': accountId, 'appId': this._appId});
}