copyWith method

  1. @override
PaPacket copyWith({
  1. String? ident,
  2. String? password,
})
override

Implementation

@override
PaPacket copyWith({
  String? ident,
  String? password,
}) {
  return PaPacket(
    ident: ident ?? this.ident,
    password: password ?? this.password,
  );
}