flexBufferToMap function
Deserializes FlexBuffer bytes to a Map<String, dynamic>.
Implementation
@pragma('vm:prefer-inline')
Map<String, dynamic>? flexBufferToMap(
BufferContext buffer, int offset, int field, {bool skipNull = false}) =>
fromFlexBuffer(buffer, offset, field, skipNullCollectionValues: skipNull)
as Map<String, dynamic>?;