KapusProto_ChangesFrame_Changes constructor
KapusProto_ChangesFrame_Changes({})
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;
}