PropertyReadHandler typedef
PropertyReadHandler =
Future<InteractionInput> Function({Object? data, int? formIndex, Map<String, Object> ? uriVariables})
A function that is called when an external request for reading a Property is received and defines what to do with such requests.
Implementation
typedef PropertyReadHandler = Future<InteractionInput> Function({
int? formIndex,
Map<String, Object>? uriVariables,
Object? data,
});