DataModify.setString constructor

DataModify.setString(
  1. dynamic value, {
  2. String fromPath = '',
  3. int? start,
  4. int? end,
})

Implementation

DataModify.setString(
  dynamic value, {
  this.fromPath = '',
  this.start,
  this.end,
}) : type = 'set string' {
  _checkValue(value);
  assert(fromType != null, 'string cannot get a value');
}