addRemark method

Future<void> addRemark(
  1. BuildContext context
)

Adds a remark on the platform.

  • context: The build context for the current widget.
  • extraPayload: A map of extra data to send with the remark, defaults to an empty map.

Implementation

Future<void> addRemark(BuildContext context) {
  throw UnimplementedError('addRemark() has not been implemented.');
}