BinaryField constructor

BinaryField(
  1. Node node,
  2. String tag,
  3. String manifest
)

Implementation

BinaryField(Node node, String tag, String manifest) :
        bytes = int.parse(manifest.substring(6)),
        super(node, tag, manifest) {
    node.container.importTypedData = true;
}