BrowserLocalizations constructor

const BrowserLocalizations({
  1. String back = 'Back',
  2. String forward = 'Forward',
  3. String refresh = 'Refresh',
  4. String share = 'Share',
  5. String couldNotReach = 'Could not reach the website.',
  6. String tryAgain = 'Try again.',
})

Implementation

const BrowserLocalizations({
  this.back = 'Back',
  this.forward = 'Forward',
  this.refresh = 'Refresh',
  this.share = 'Share',
  this.couldNotReach = 'Could not reach the website.',
  this.tryAgain = 'Try again.',
});