servicestack_web 0.0.3 copy "servicestack_web: ^0.0.3" to clipboard
servicestack_web: ^0.0.3 copied to clipboard

ServiceStack convenience utils for developing Dart Web and AngularDart apps. Integrates with ServiceStack's Server features including ServiceClient, Error Handling and Validation

example/main.dart

import 'package:servicestack_web/client.dart';
import 'test.dtos.dart';

main() async {
  var client = new JsonWebClient("http://test.servicestack.net");

  var request = new Hello(name: "World");
  HelloResponse response = await client.get(request);
  
  print("Result: ${response.result}");
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

ServiceStack convenience utils for developing Dart Web and AngularDart apps. Integrates with ServiceStack's Server features including ServiceClient, Error Handling and Validation

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

http, servicestack

More

Packages that depend on servicestack_web