PropertyWriteHandler typedef

PropertyWriteHandler = Future<void> Function(InteractionOutput value, {Object? data, int? formIndex, Map<String, Object>? uriVariables})

A function that is called when an external request for writing a Property is received and defines what to do with such requests.

Implementation

typedef PropertyWriteHandler = Future<void> Function(
  InteractionOutput value, {
  int? formIndex,
  Map<String, Object>? uriVariables,
  Object? data,
});