namespace FlutterCodeGenerator.ModelTypes { internal class IntNullableModelType : SimpleModelType { public IntNullableModelType(string name) : base(typeof(int?), name) { } public override string GetFlutterTypeName(bool isDefault = true, bool isGenericName = false, bool isSingle = false) { return "int"; } } }