AccountsCompanion constructor

const AccountsCompanion({
  1. Value<int> id = const Value.absent(),
  2. Value<String> userId = const Value.absent(),
})

Implementation

const AccountsCompanion({
  this.id = const Value.absent(),
  this.userId = const Value.absent(),
});