Skip to content

Instantly share code, notes, and snippets.

@SharbelOkzan
Created December 14, 2023 14:14
Show Gist options
  • Save SharbelOkzan/fa2a41390716d21c1170cb76340b2de6 to your computer and use it in GitHub Desktop.
Save SharbelOkzan/fa2a41390716d21c1170cb76340b2de6 to your computer and use it in GitHub Desktop.
[Dart issue] Assign value to a first-class member function in the constructor
class Bar {
final int Function() foo;
Bar() : foo = () => 1;
}
class Bar2 {
final int Function() foo = () => 1;
Bar2();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment