Skip to content

Commit

Permalink
feat(scripting_api)!: rework interaction_options
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Mar 11, 2022
1 parent 99a5281 commit 90fa067
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/scripting_api/interaction_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@ class InteractionOptions {
int? formIndex;

/// Represents the URI template variables to be used with the interaction.
Object? uriVariables;
Map<String, Object>? uriVariables;

/// Represents additional opaque data that needs to be passed to the
/// interaction.
Object? data;

/// Constructor
InteractionOptions({this.formIndex, this.uriVariables, this.data});
}

0 comments on commit 90fa067

Please sign in to comment.