copyWith method
Implementation
TransactionPayloadStringify copyWith({
double? fees,
String? from,
int? lamports,
String? to,
String? transaction,
}) {
return TransactionPayloadStringify(
fees: fees ?? this.fees,
from: from ?? this.from,
lamports: lamports ?? this.lamports,
to: to ?? this.to,
transaction: transaction ?? this.transaction,
);
}