onCallAccept method

void onCallAccept()

Implementation

void onCallAccept() async {
  try {
    tools.log("ChatCallKitManagerImpl: onCallAccept called");
    await fetchToken();
  } on ChatCallKitError catch (e) {
    onError(e);
  }
}