LusciiSdkAction constructor

LusciiSdkAction({
  1. required String id,
  2. required String name,
  3. required LusciiSdkLaunchableStatus launchableStatus,
  4. required bool isLaunchable,
  5. String? icon,
  6. DateTime? completedAt,
  7. bool? isPlanned,
  8. bool? isSelfCare,
  9. bool? isExtra,
})

Creates a new LusciiSdkAction with the given id, name, launchableStatus, and isLaunchable.

Implementation

LusciiSdkAction({
  required this.id,
  required this.name,
  required this.launchableStatus,
  required this.isLaunchable,
  this.icon,
  this.completedAt,
  this.isPlanned,
  this.isSelfCare,
  this.isExtra,
});