copyWith method

BytesArgs copyWith({
  1. String? data,
  2. int? fletcher32,
  3. int? sequenceId,
})

Implementation

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