trySetKeyPath method
void
trySetKeyPath(
- dynamic key,
- dynamic value
Implementation
void trySetKeyPath(dynamic key, dynamic value) {
if (key is! List) return;
final keyPaths = JSON(key).list;
if (keyPaths == null) return;
JSON json = this[keyPaths];
json._value = value;
}