appendAccount method

void appendAccount({
  1. required String account,
})

添加账号 推荐有账号体系的App使用(此接口保留之前的账号,只做增加操作, 一个token下最多只能有10个账号超过限制会自动顶掉之前绑定的账号,)

Implementation

void appendAccount({required String account}) {
  _channel.invokeMethod('appendAccount', {'account': account});
}