servicestack 3.0.3 copy "servicestack: ^3.0.3" to clipboard
servicestack: ^3.0.3 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';

Future<void> 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
145
points
453
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, web

More

Packages that depend on servicestack