SqfEntitySequence class
Constructors
SqfEntitySequence ({String ? sequenceName , int ? startWith , int ? incrementBy , int ? minValue , int ? maxValue , bool ? cycle , String ? modelName })
This class is required for SEQUENCE definitions using in /lib/model/model.dart file
Simple sequence definition must be below:
const
Properties
cycle
→ bool ?
cycle if true then, When sequence reaches its max value it starts from beginning. otherwise An exception will be thrown if sequence exceeds its max_value.
final
hashCode
→ int
The hash code for this object.
no setter inherited
incrementBy
→ int ?
Value by which sequence will increment itself. Increment_value can be positive or negative.
final
maxValue
→ int ?
Maximum value of the sequence.
final
minValue
→ int ?
Minimum value of the sequence.
final
modelName
→ String ?
final
runtimeType
→ Type
A representation of the runtime type of the object.
no setter inherited
sequenceName
→ String ?
Name of the sequence.
final
startWith
→ int ?
starting value from where the sequence starts. startWith value should be greater than or equal
to minimum value and less than equal to maximum value.
final
Methods
noSuchMethod (Invocation invocation )
→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString ()
→ String
A string representation of this object.
inherited
sqfentity_gen_fix 2.3.2+6