flexBufferToList function

List? flexBufferToList(
  1. BufferContext buffer,
  2. int offset,
  3. int field, {
  4. bool skipNull = false,
})

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>?;