Created
October 13, 2021 19:18
-
-
Save felixblaschke/2a51b76a6cacca7b8173bcb0d85e50ad to your computer and use it in GitHub Desktop.
file.dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math'; | |
// #begin | |
class MyClass { | |
// #skip | |
int someMethod() { | |
return Random().nextInt(1); | |
} | |
// #resume | |
String interestingMethod() { | |
return 'Foo'; | |
} | |
} | |
// #end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment