initialize method

  1. @override
Future<void> initialize({
  1. String? configJson,
  2. bool autoNotifications = true,
})
override

Implementation

@override
Future<void> initialize({
  String? configJson,
  bool autoNotifications = true,
}) async {
  await methodChannel.invokeMethod<void>('initialize', {
    'configJson': configJson,
    'autoNotifications': autoNotifications,
  });
}