load method

  1. @override
void load(
  1. Map m
)
override

Load this node from the provided map as m.

Implementation

@override
void load(Map m) {
  super.load(m);

  if (m['?json'] != null) {
    init(m['?json']);
  }

  if (m['?_json'] != null) {
    updateJsonValue(m['?_json']);
  }
}