turn_gen 2.1.1 copy "turn_gen: ^2.1.1" to clipboard
turn_gen: ^2.1.1 copied to clipboard

TurnGen is a set of scripts combined into a command line tool to minimize coding and simplify various tasks

example/README.md

import 'dart:convert';
// import 'package:meta/meta.dart';
// import 'package:collection/collection.dart';

enum Speed with Comparable<Speed> {
  stop(0),
  slow(5),
  normal(10),
  fast(20);

  const Speed(this.value);

  final int value;
  // end
}

@immutable
class RegistrationState {
  final bool isLoad;
  final String? name;
  final List<int> activitySelected;
// end
}

@immutable
class _Union {
  _Union.success();
  _Union.load();
  _Union.init();
  _Union.error();
}

// end
2
likes
120
pub points
18%
popularity

Publisher

verified publisherwayofdt.com

TurnGen is a set of scripts combined into a command line tool to minimize coding and simplify various tasks

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

args, cli_util, path, yaml

More

Packages that depend on turn_gen