copyWith method

  1. @override
ArPacket copyWith({
  1. String? reason,
})
override

Implementation

@override
ArPacket copyWith({
  String? reason,
}) {
  return ArPacket(
    reason: reason ?? this.reason,
  );
}