次のコードは例外をスローします"type '([int]) => void' is not a subtype of type 'RequestAnimationFrameCallback' of 'callback'."
import 'dart:html';
void main() {
window.animationFrame.then((time) => print("test"));
}
に変更window.animationFrame.then
するとwindow.requestAnimationFrame
、すべてが期待どおりに機能します。Dart 先物の仕組みを誤解していますか?