Skip to content

Instantly share code, notes, and snippets.

@ThinkDigitalSoftware
Created February 22, 2020 22:39
Show Gist options
  • Save ThinkDigitalSoftware/ec30fcfcf71e5812b3aa6b58e88e2e67 to your computer and use it in GitHub Desktop.
Save ThinkDigitalSoftware/ec30fcfcf71e5812b3aa6b58e88e2e67 to your computer and use it in GitHub Desktop.
Invalid analyzer conversion
void main() {
Function func;
func = () {
func2();
};
print(func());
func = () => func2();
print(func());
}
String func2() => "func2 return value";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment