質問編集履歴

1

文の修正

2021/03/17 09:23

投稿

hgka3782
hgka3782

スコア1

test CHANGED
File without changes
test CHANGED
@@ -7,8 +7,6 @@
7
7
  Flutter 1.22.4
8
8
 
9
9
  Dart 2.10.4
10
-
11
- ![イメージ説明](7731b20df6daac06a96c432fcddf9564.png)
12
10
 
13
11
  ![イメージ説明](b509a1905d9b66036c6569f351b03e77.png)
14
12
 
@@ -169,31 +167,3 @@
169
167
  };
170
168
 
171
169
  ```
172
-
173
- ```dart
174
-
175
- /// APIコール
176
-
177
- Future<ConnpassResponse> getEvents(String searchWord) async {
178
-
179
-
180
-
181
- // APIサーバアクセス
182
-
183
- final response = await http.get('https://connpass.com/api/v1/event/?count=100&order=1&keyword=' + searchWord);
184
-
185
- if (response.statusCode == 200) {
186
-
187
- // サーバーがokの返答をしてくれた場合は、JSONを解析する
188
-
189
- return ConnpassResponse.fromJson(convert.jsonDecode(response.body));
190
-
191
- } else {
192
-
193
- throw Exception('Failed to connect to webservice');
194
-
195
- }
196
-
197
- }
198
-
199
- ```