TranslationsCompanion constructor

const TranslationsCompanion({
  1. Value<String> originalTextHash = const Value.absent(),
  2. Value<String> translatedText = const Value.absent(),
  3. Value<SolvroLocale> originalLanguageCode = const Value.absent(),
  4. Value<SolvroLocale> translatedLanguageCode = const Value.absent(),
  5. Value<bool> isApproved = const Value.absent(),
  6. Value<DateTime> createdAt = const Value.absent(),
  7. Value<int> rowid = const Value.absent(),
})

Implementation

const TranslationsCompanion({
  this.originalTextHash = const Value.absent(),
  this.translatedText = const Value.absent(),
  this.originalLanguageCode = const Value.absent(),
  this.translatedLanguageCode = const Value.absent(),
  this.isApproved = const Value.absent(),
  this.createdAt = const Value.absent(),
  this.rowid = const Value.absent(),
});