service_client 0.1.1
service_client: ^0.1.1 copied to clipboard
An http client interface.
example/example.dart
import 'services/json_placeholder_service.dart';
/// A simple example that uses JsonPlaceholderService
void main() async {
print('Calling JSONPlaceholder public API...\n');
final todo = await JsonPlaceholderService.getTodo(1);
print('Received TODO item:');
print(todo);
}