Make variable name uniform
This commit is contained in:
parent
ccc2726e54
commit
ce0e241938
|
@ -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));
|
||||
});
|
||||
}
|
Loading…
Reference in New Issue