completeChatAction static method

  1. @Deprecated('This method was deprecated after v1.0.5,' 'Use sendEvent(event, values) method instead.')
Future<Null> completeChatAction(
  1. String actionUUID
)

Marks a chat action as complete provided the actionUUID.

Implementation

@Deprecated('This method was deprecated after v1.0.5,'
    'Use sendEvent(event, values) method instead.')
static Future<Null> completeChatAction(String actionUUID) async {
  await _channel.invokeMethod('completeChatAction', actionUUID);
}