ChangePageAction constructor

const ChangePageAction({
  1. required String id,
  2. required List<ComponentParameterField> passingParameterValues,
  3. String type = 'change_page',
  4. required ID componentID,
})

Implementation

const ChangePageAction({
  required super.id,
  required super.passingParameterValues,
  super.type = 'change_page',
  required this.componentID,
});