Files
Casha/lib/shared/providers/billing_provider.dart
T
2026-06-29 20:43:13 +03:00

7 lines
200 B
Dart

import 'package:flutter_riverpod/flutter_riverpod.dart';
import '../services/billing_service.dart';
final billingServiceProvider = Provider<BillingService>((ref) {
return PlayBillingService();
});