flamingo_annotation 0.5.0 copy "flamingo_annotation: ^0.5.0" to clipboard
flamingo_annotation: ^0.5.0 copied to clipboard

Automatically generate code for converting flamingo JSON by annotating Dart classes.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running'),
        ),
      ),
    );
  }
}
1
likes
160
points
43
downloads

Publisher

verified publisherneverjp.com

Weekly Downloads

Automatically generate code for converting flamingo JSON by annotating Dart classes.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on flamingo_annotation