logout static method

Future<void> logout()

logout

Implementation

static Future<void> logout() async {
  try{
    await _channel.invokeMethod('logout');
  }  catch (e) {
    throw(e.toString());
  }
}