MigrationApplied constructor

MigrationApplied({
  1. MessageId? entity,
  2. Timestamp? when,
})

Implementation

factory MigrationApplied({
  $42.MessageId? entity,
  $4.Timestamp? when,
}) {
  final _result = create();
  if (entity != null) {
    _result.entity = entity;
  }
  if (when != null) {
    _result.when = when;
  }
  return _result;
}