Add devtool bindings (#356)

This commit is contained in:
Remi Rousselet
2021-03-04 11:42:35 +00:00
committed by GitHub
parent 3ac52bbfa2
commit fc66736c54
14 changed files with 398 additions and 27 deletions

View File

@ -81,7 +81,7 @@ final paginatedQuestionsProvider = FutureProvider.autoDispose
final page = parsed.copyWith(
items: parsed.items.map((e) {
final document = parse(e.body);
return e.copyWith(body: document.body.text.replaceAll('\n', ' '));
return e.copyWith(body: document.body!.text.replaceAll('\n', ' '));
}).toList(),
);