Encode nil able if value is nil
@override Uint8List encode(v) { if (null == v) { return Uint8List(0); } return utf8.encode(encodeString(v)); }