InstructionInput.fromJson constructor
InstructionInput.fromJson(
- 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,
);