getStarsTransactions method
Get Stars Transactions.
ID: 69da4557.
Implementation
Future<Result<PaymentsStarsStatusBase>> getStarsTransactions({
required bool inbound,
required bool outbound,
required bool ascending,
required bool ton,
String? subscriptionId,
required InputPeerBase peer,
required String offset,
required int limit,
}) async {
// Preparing the request.
final request = PaymentsGetStarsTransactions(
inbound: inbound,
outbound: outbound,
ascending: ascending,
ton: ton,
subscriptionId: subscriptionId,
peer: peer,
offset: offset,
limit: limit,
);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<PaymentsStarsStatusBase>();
}