Snapshot constructor

Snapshot({
  1. Int64? logEntryId,
  2. String? name,
  3. List<int>? image,
})

Implementation

factory Snapshot({
  $fixnum.Int64? logEntryId,
  $core.String? name,
  $core.List<$core.int>? image,
}) {
  final _result = create();
  if (logEntryId != null) {
    _result.logEntryId = logEntryId;
  }
  if (name != null) {
    _result.name = name;
  }
  if (image != null) {
    _result.image = image;
  }
  return _result;
}