AvailableState constructor

AvailableState({
  1. required String action,
  2. required String target,
})

Returns a new AvailableState instance.

Implementation

AvailableState({
  required this.action,
  required this.target,
});