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

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 = JsonServiceClient("https://test.servicestack.net");

  var request = Hello(name: "World");
  HelloResponse response = await client.get(request);

  print("Result: ${response.result}");
}
6
likes
135
points
175
downloads

Publisher

unverified uploader

Weekly Downloads

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

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

http

More

Packages that depend on servicestack