r static method

List<Widget> r()

Implementation

static List<Widget> r() {
  List<Widget> p = <Widget>[];
  for (MapEntry<String, void Function()> x in xtRunnersExport.entries) {
    p.add(CompactTextButton(x.key, onPressed: x.value));
  }
  return p;
}