ledger top up functionality and few small fixes for project architechture and design

This commit is contained in:
Arseni
2026-03-05 21:49:23 +03:00
parent 39c04beb21
commit 97b16542c2
41 changed files with 764 additions and 455 deletions

View File

@@ -0,0 +1,9 @@
class OperationDocumentRef {
final String gatewayService;
final String operationRef;
const OperationDocumentRef({
required this.gatewayService,
required this.operationRef,
});
}