AllocateInfo.fromJson constructor

AllocateInfo.fromJson(
  1. 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,
      );