Make variable name uniform

development
Oystein Kristoffer Tveit 2020-06-24 17:01:39 +02:00
parent ccc2726e54
commit ce0e241938
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ final jisho = JishoApi();
final encoder = JsonEncoder.withIndent(' ');
void main() async {
await jisho.searchForPhrase('反対').then((data) {
print(encoder.convert(data));
await jisho.searchForPhrase('反対').then((result) {
print(encoder.convert(result));
});
}