turn_gen 1.0.6 copy "turn_gen: ^1.0.6" to clipboard
turn_gen: ^1.0.6 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
0
pub points
19%
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

License

unknown (LICENSE)

Dependencies

args, cli_util, path, yaml

More

Packages that depend on turn_gen