BoolModelType.cs 408 B

123456789101112131415
  1. namespace FlutterCodeGenerator.ModelTypes
  2. {
  3. internal class BoolModelType : SimpleModelType
  4. {
  5. public BoolModelType(string name) : base(typeof(bool), name)
  6. {
  7. DefaultValue = "false";
  8. }
  9. public override string GetFlutterTypeName(bool isDefault = true, bool isGenericName = false, bool isSingle = false)
  10. {
  11. return "bool";
  12. }
  13. }
  14. }