servicestack 3.0.0 copy "servicestack: ^3.0.0" to clipboard
servicestack: ^3.0.0 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
115
pub points
75%
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

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

http

More

Packages that depend on servicestack