#include <FlutterCodecs.h>
Class Methods | |
| (instancetype) | + codecWithReaderWriter: |
Additional Inherited Members |
A FlutterMessageCodec using the Flutter standard binary encoding.
This codec is guaranteed to be compatible with the corresponding StandardMessageCodec on the Dart side. These parts of the Flutter SDK are evolved synchronously.
Supported messages are acyclic values of these forms:
nil or NSNullNSNumber (including their representation of Boolean values)NSStringFlutterStandardTypedDataNSArray of supported valuesNSDictionary with supported keys and valuesOn the Dart side, these values are represented as follows:
nil or NSNull: nullNSNumber: bool, int, or double, depending on the contained value.NSString: StringFlutterStandardTypedData: Uint8List, Int32List, Int64List, or Float64ListNSArray: ListNSDictionary: Map Definition at line 209 of file FlutterCodecs.h.
| + (instancetype) codecWithReaderWriter: | (FlutterStandardReaderWriter*) | readerWriter |
Create a FlutterStandardMessageCodec who will read and write to readerWriter.
Definition at line 8 of file FlutterStandardCodec.mm.
Referenced by TEST().