Skip to content

Commit 1840842

Browse files
committed
fix: exception message
1 parent c458074 commit 1840842

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/services/shopinbit/shopinbit_service.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ class ShopInBitService {
1010

1111
SecureStorageInterface get _secure {
1212
if (_secureStorageInterface == null) {
13-
throw Exception("Did you forget to call ShopInBitService.init()?");
13+
throw Exception(
14+
"Did you forget to call ShopInBitService.ensureInitialized()?",
15+
);
1416
}
1517
return _secureStorageInterface!;
1618
}

0 commit comments

Comments
 (0)