#import <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 NSNull
NSNumber
(including their representation of Boolean values)NSString
FlutterStandardTypedData
NSArray
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
: String
FlutterStandardTypedData
: Uint8List
, Int32List
, Int64List
, or Float64List
NSArray
: List
NSDictionary
: 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 24 of file FlutterStandardCodec.mm.
Referenced by TEST().