BookProgressModelSchema top-level constant

CollectionSchema<BookProgressModel> const BookProgressModelSchema

Implementation

const BookProgressModelSchema = CollectionSchema(
  name: r'BookProgressModel',
  id: 2050998199370397082,
  properties: {
    r'bookId': PropertySchema(
      id: 0,
      name: r'bookId',
      type: IsarType.string,
    ),
    r'currentChapterIndex': PropertySchema(
      id: 1,
      name: r'currentChapterIndex',
      type: IsarType.long,
    ),
    r'currentPageIndex': PropertySchema(
      id: 2,
      name: r'currentPageIndex',
      type: IsarType.long,
    )
  },
  estimateSize: _bookProgressModelEstimateSize,
  serialize: _bookProgressModelSerialize,
  deserialize: _bookProgressModelDeserialize,
  deserializeProp: _bookProgressModelDeserializeProp,
  idName: r'localId',
  indexes: {},
  links: {},
  embeddedSchemas: {},
  getId: _bookProgressModelGetId,
  getLinks: _bookProgressModelGetLinks,
  attach: _bookProgressModelAttach,
  version: '3.1.0+1',
);