Change constructor
Change({})
Implementation
factory Change({
$0.Timestamp? changeDate,
$1.LocalizedMessage? eventType,
$fixnum.Int64? sequence,
$core.String? editorId,
$core.String? editorDisplayName,
$core.String? resourceOwnerId,
$core.String? editorPreferredLoginName,
$core.String? editorAvatarUrl,
}) {
final result = create();
if (changeDate != null) result.changeDate = changeDate;
if (eventType != null) result.eventType = eventType;
if (sequence != null) result.sequence = sequence;
if (editorId != null) result.editorId = editorId;
if (editorDisplayName != null) result.editorDisplayName = editorDisplayName;
if (resourceOwnerId != null) result.resourceOwnerId = resourceOwnerId;
if (editorPreferredLoginName != null)
result.editorPreferredLoginName = editorPreferredLoginName;
if (editorAvatarUrl != null) result.editorAvatarUrl = editorAvatarUrl;
return result;
}