copyWith method

TestCallBytes copyWith({
  1. String? x,
})

Implementation

TestCallBytes copyWith({
  String? x,
}) =>
    TestCallBytes(
      x: x ?? this.x,
    );