accept method

  1. @override
Future<ActionCallback> accept()
override

Implementation

@override
Future<ActionCallback> accept() async {
  _enterTRTCRoom();
  V2TimCallback res = await timManager
      .getSignalingManager()
      .accept(inviteID: mCurCallID, data: jsonEncode(getCustomMap()));
  return ActionCallback(code: res.code, desc: res.desc);
}