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