BoolNullableModelType.cs 389 B

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