hienlt0610
2/27/2020 - 7:37 AM

[Flutter] IndexWalker

Null-Safey access map

class IndexWalker {
  dynamic value;
  IndexWalker(this.value);
  IndexWalker operator[](Object index) {
    if (value != null) value = value[index];
    return this;
  }
}