9 lines
110 B
Dart
Raw Normal View History

library foo;
const contextString = 'soup';
class MyContext {
final String s;
const MyContext(this.s);
}