copyWith method

ReadTransaction copyWith({
  1. int? ref,
})

Returns a new instance by overriding the values passed as arguments

Implementation

ReadTransaction copyWith({int /*U32*/ ? ref}) =>
    ReadTransaction(ref: ref ?? this.ref);