AllocateInfo.fromJson constructor
AllocateInfo.fromJson(
- Map json_
Implementation
AllocateInfo.fromJson(core.Map json_)
: this(
unusedArguments: json_.containsKey('unusedArguments')
? (json_['unusedArguments'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);