Counter Service
Here’s a quick example showing how to add a service to the Dependy module and retrieve it.
import 'package:dependy/dependy.dart';
class CounterService {
int _count = 0;
int increment() => ++_count;
}
// Define the Dependy module with providers
final dependy = DependyModule(
providers: {
DependyProvider<CounterService>(
(_) => CounterService(),
),
},
);
void main() async {
// Retrieve the CounterService from the module
final counterService = await dependy<CounterService>();
print('Initial Count: ${counterService.increment()}');
print('After Increment: ${counterService.increment()}');
}
In this example:
- We create a
CounterService
with a simpleincrement()
method to keep track of a count. - The
DependyModule
is defined withCounterService
as a provider, making it accessible through Dependy's dependency injection system. - In the
main
function, we retrieve and useCounterService
, showing how Dependy handles service management.
By default, Dependy will resolve all providers lazily, meaning services are only created when they are first requested.