PlanStatus constructor

PlanStatus({
  1. PlanState? state,
  2. Timestamp? timestamp,
  3. String? reason,
})

Implementation

factory PlanStatus({
  PlanState? state,
  $44.Timestamp? timestamp,
  $core.String? reason,
}) {
  final $result = create();
  if (state != null) {
    $result.state = state;
  }
  if (timestamp != null) {
    $result.timestamp = timestamp;
  }
  if (reason != null) {
    $result.reason = reason;
  }
  return $result;
}