API Table Investasi Admin

This commit is contained in:
2025-02-04 22:35:44 +08:00
parent 257c1ebaad
commit c53ca6d355
40 changed files with 1737 additions and 378 deletions

View File

@@ -0,0 +1,20 @@
import 'dart:async';
class ${upperName}Provider {
Future<void> loadAsync(String token) async {
/// write from keystore/keychain
await Future.delayed(Duration(seconds: 2));
}
Future<void> saveAsync(String token) async {
/// write from keystore/keychain
await Future.delayed(Duration(seconds: 2));
}
void test(bool isError) {
if (isError == true){
throw Exception('manual error');
}
}
}