Skip to content

Instantly share code, notes, and snippets.

@felixblaschke
Created October 13, 2021 19:18
Show Gist options
  • Save felixblaschke/2a51b76a6cacca7b8173bcb0d85e50ad to your computer and use it in GitHub Desktop.
Save felixblaschke/2a51b76a6cacca7b8173bcb0d85e50ad to your computer and use it in GitHub Desktop.
file.dart
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