Interruption constructor Null safety

Interruption(
  1. {MessageId? stoppedAt}
)

Implementation

factory Interruption({
  $42.MessageId? stoppedAt,
}) {
  final _result = create();
  if (stoppedAt != null) {
    _result.stoppedAt = stoppedAt;
  }
  return _result;
}