servicestack 3.0.2 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
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}");
}