mirror of https://github.com/AMT-Cheif/drift.git
Fix line length in comments
This commit is contained in:
parent
b8fb002c41
commit
59ec14d060
|
@ -155,12 +155,14 @@ class UseRowClass {
|
||||||
/// used to map database rows to the desired row class.
|
/// used to map database rows to the desired row class.
|
||||||
final String constructor;
|
final String constructor;
|
||||||
|
|
||||||
/// Generate a companion constructor mapping the referenced [type] to a companion.
|
/// Generate a companion constructor mapping the referenced [type] to a
|
||||||
///
|
|
||||||
/// When this option is set (it defaults to `false`), moor generates a constructor in the
|
|
||||||
/// matching companion class of this table mapping an instance of [type] to a suitable
|
|
||||||
/// companion.
|
/// companion.
|
||||||
/// This can be useful when a custom data class should be used for inserts or updates.
|
///
|
||||||
|
/// When this option is set (it defaults to `false`), moor generates a
|
||||||
|
/// constructor in the matching companion class of this table mapping an
|
||||||
|
/// instance of [type] to a suitable companion.
|
||||||
|
/// This can be useful when a custom data class should be used for inserts or
|
||||||
|
/// updates.
|
||||||
/// For this purpose, make it implement the `Insertable` interface, enable
|
/// For this purpose, make it implement the `Insertable` interface, enable
|
||||||
/// [generateToCompanion] and use the generated companion in your `toColumns`
|
/// [generateToCompanion] and use the generated companion in your `toColumns`
|
||||||
/// implementation.
|
/// implementation.
|
||||||
|
|
Loading…
Reference in New Issue