PageMeta constructor

PageMeta({
  1. String branch = 'master',
  2. String product = 'brx',
  3. String version = '1.0',
  4. bool preview = false,
})

Returns a new PageMeta instance.

Implementation

PageMeta(
    {this.branch = 'master',
    this.product = 'brx',
    this.version = '1.0',
    this.preview = false});