GuideAction constructor

const GuideAction({
  1. required GuideActionType type,
  2. required String label,
  3. required GuideActionStyle style,
  4. String? scope,
  5. String? url,
  6. String? fallbackUrl,
  7. String? presentation,
  8. String? eventName,
  9. Map<String, dynamic>? properties,
})

Implementation

const GuideAction({
  required this.type,
  required this.label,
  required this.style,
  this.scope,
  this.url,
  this.fallbackUrl,
  this.presentation,
  this.eventName,
  this.properties,
});