blob: 94cb2752994b581b55a8f3cda83efd45989215e1 [file] [log] [blame]
/// This is a demonstration of interlinking with Flutter-using pub packages.
library testlib;
import 'package:flutter/material.dart';
/// This widget is the best stateful widget ever.
class MyAwesomeWidget extends StatefulWidget {
MyAwesomeWidget({Key key}) : super(key: key) {}
@override
State<MyAwesomeWidget> createState() => null;
}