KapusProto_ChangesFrame_Changes constructor

KapusProto_ChangesFrame_Changes({
  1. Timestamp? timestamp,
  2. int? channel,
  3. int? row,
  4. int? column,
  5. String? name,
  6. int? newState,
})

Implementation

factory KapusProto_ChangesFrame_Changes({
  $2.Timestamp? timestamp,
  $core.int? channel,
  $core.int? row,
  $core.int? column,
  $core.String? name,
  $core.int? newState,
}) {
  final result = create();
  if (timestamp != null) result.timestamp = timestamp;
  if (channel != null) result.channel = channel;
  if (row != null) result.row = row;
  if (column != null) result.column = column;
  if (name != null) result.name = name;
  if (newState != null) result.newState = newState;
  return result;
}