「.NET 開発基盤部会 Wiki」は、「Open棟梁Project」,「OSSコンソーシアム .NET開発基盤部会」によって運営されています。
CIBAのAD実装の準備
HTTPプラグ・インが必要になる。
import 'package:http/http.dart' as http;
void sendRequest() { http .get(url) .then((response) { print(response); }) .catchError((error) => print(error)); }
Future<void> sendRequest() async { try { final response = await http.get(url); print(response); } on Exception caach (error) { print(error); } }
var response = await http.post( "https://www.example.com/path/to/api", body: { "nickname": "chooyan", "description": "A freelance mobile app developer", }, );