potatoes 3.0.7  potatoes: ^3.0.7 copied to clipboard
potatoes: ^3.0.7 copied to clipboard
Potatoes or french fries?
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
  runApp(const MyApp());
}
class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running potatoes\n'),
        ),
      ),
    );
  }
}