toJson method
Converts the request parameters to a JSON representation.
Implementation
@override
List<dynamic> toJson() {
return [
transactionSignature,
SolanaRequestUtils.createConfig([
commitment?.toJson(),
{'enableReceivedNotification': enableReceivedNotification}
])
];
}