initialize method

Future<void> initialize(
  1. BuildContext context, {
  2. bool shakeGestureEnable = true,
  3. Map<String, dynamic> options = const {},
})

Initializes the AppRemark platform.

This method should be implemented by platform-specific code and is used to initialize the necessary platform resources.

  • context: The build context for the current widget.
  • shakeGestureEnable: Whether the shake gesture should be enabled. Defaults to true.
  • options: A map of additional configuration options, defaults to an empty map.

Implementation

Future<void> initialize(
  BuildContext context, {
  bool shakeGestureEnable = true,
  Map<String, dynamic> options = const {},
}) {
  throw UnimplementedError('initialize() has not been implemented.');
}