servicestack 1.0.5 copy "servicestack: ^1.0.5" to clipboard
servicestack: ^1.0.5 copied to clipboard

outdated

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

example/main.dart

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

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

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

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on servicestack