DataModify.insert constructor

DataModify.insert(
  1. dynamic value, {
  2. String fromPath = '',
  3. int? index = 0,
})

Implementation

DataModify.insert(dynamic value, {this.fromPath = '', this.index = 0})
    : type = 'insert' {
  _checkValue(value);
}