mirror of
https://github.com/koloideal/Casha.git
synced 2026-08-08 09:41:13 +03:00
7 lines
200 B
Dart
7 lines
200 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import '../services/billing_service.dart';
|
|
|
|
final billingServiceProvider = Provider<BillingService>((ref) {
|
|
return PlayBillingService();
|
|
});
|