IntField constructor

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

Implementation

IntField(Node node, String tag, String manifest) :
        signed = manifest[0] != 'u',
        bytes = (int.parse(manifest.replaceAll(RegExp(r'\D'), '')) / 8).round(),
        super(node, tag, manifest);