matthew-carroll / flutter_processing

A Flutter port of Processing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Try FutureOr<T> in place of full async setup() and draw()

matthew-carroll opened this issue · comments

Consider returning FutureOr<> from the Processing methods that might not require async behavior such as setup() and draw().

https://api.dart.dev/stable/2.12.2/dart-async/FutureOr-class.html

This is done.