Whether there is no key/value pair in the map.
Returns true if itself is Null.
true
マップにキーと値のペアがないかどうかを調べます。
自身がNullな場合はtrueを返します。
bool get isEmpty { if (this == null) { return true; } return this!.isEmpty; }