DatabaseBlogSource constructor

const DatabaseBlogSource(
  1. DbExecutor db, {
  2. String table = 'blog_posts',
  3. BlogPostMapper mapper = const BlogPostMapper(),
  4. int max = 1000,
})

Implementation

const DatabaseBlogSource(
  this.db, {
  this.table = 'blog_posts',
  this.mapper = const BlogPostMapper(),
  this.max = 1000,
});