copyWith method

ExUnits copyWith({
  1. BigInt? mem,
  2. BigInt? steps,
})

Implementation

ExUnits copyWith({BigInt? mem, BigInt? steps}) {
  return ExUnits(mem: mem ?? this.mem, steps: steps ?? this.steps);
}