createWithConfig static method

  1. @Deprecated('This method is deprecated. Use createWithContext instead.')
Future<RtcEngine> createWithConfig(
  1. RtcEngineConfig config
)

Initializes the RtcEngine object. Deprecated: This method is deprecated. Use createWithContext instead.

Param config The RtcEngine configuraiton.

Implementation

@Deprecated('This method is deprecated. Use createWithContext instead.')
static Future<RtcEngine> createWithConfig(RtcEngineConfig config) async {
  return createWithContext(config);
}