Change constructor

Change({
  1. Timestamp? changeDate,
  2. LocalizedMessage? eventType,
  3. Int64? sequence,
  4. String? editorId,
  5. String? editorDisplayName,
  6. String? resourceOwnerId,
  7. String? editorPreferredLoginName,
  8. String? editorAvatarUrl,
})

Implementation

factory Change({
  $6.Timestamp? changeDate,
  $14.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;
}