removeValueNull method

Map removeValueNull()

Implementation

Map removeValueNull() {
  try {
    forEach((key, value) {
      try {
        if (value == null) {
          remove(key);
        }
      } catch (e) {}
    });
    return this;
  } catch (e) {
    return this;
  }
}