IntModelType.cs 400 B

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