copyWith method
Implementation
BytesArgs copyWith({String? data, int? fletcher32, int? sequenceId}) {
return BytesArgs(
data: data ?? this.data,
fletcher32: fletcher32 ?? this.fletcher32,
sequenceId: sequenceId ?? this.sequenceId);
}