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