cqrs 3.0.2 copy "cqrs: ^3.0.2" to clipboard
cqrs: ^3.0.2 copied to clipboard

outdated

CQRS client with helper Command/Query classes for Dart

dart_cqrs #

Introduction #

cqrs is a simple CQRS client (with http) using helper Command/Query classes.

Code Samples #

Queries:

const result = await _cqrs.get(SimpleQuery());
print result;

Commands:

const result = await _cqrs.run(SimpleCommand());

if (result.wasSuccessful) {
  print('Success!');
}
23
likes
0
pub points
71%
popularity

Publisher

verified publisherleancode.co

CQRS client with helper Command/Query classes for Dart

Homepage

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on cqrs