initialize method
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 totrue.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 {},
required Function(Map<String, dynamic>) onRemarkResponse,
}) {
throw UnimplementedError('initialize() has not been implemented.');
}