copyWith method Null safety

SendIcxResponse copyWith(
  1. {String? txHash,
  2. int? status}
)

Implementation

SendIcxResponse copyWith({
  String? txHash,
  int? status,
}) =>
    SendIcxResponse(
      txHash: txHash ?? this.txHash,
      status: status ?? this.status,
    );