writeMap method Null safety
- Map map
override
Writes a Map into the buffer
map
: the value to write
Implementation
@override
void writeMap(Map map) {
_writeMapHeader(this, map);
_writeMapBody(this, map);
}
Writes a Map into the buffer
map
: the value to write@override
void writeMap(Map map) {
_writeMapHeader(this, map);
_writeMapBody(this, map);
}