MigrationApplied constructor
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;
}