InstructionInput.fromJson constructor

InstructionInput.fromJson(
  1. Map _json
)

Implementation

InstructionInput.fromJson(core.Map _json)
    : this(
        outputNum: _json.containsKey('outputNum')
            ? _json['outputNum'] as core.int
            : null,
        producerInstructionIndex:
            _json.containsKey('producerInstructionIndex')
                ? _json['producerInstructionIndex'] as core.int
                : null,
      );