123456789101112131415 |
- namespace FlutterCodeGenerator.ModelTypes
- {
- internal class IntModelType : SimpleModelType
- {
- public IntModelType(string name) : base(typeof(int), name)
- {
- DefaultValue = "0";
- }
- public override string GetFlutterTypeName(bool isDefault = true, bool isGenericName = false, bool isSingle = false)
- {
- return "int";
- }
- }
- }
|