MultiTarget.fromJson constructor

MultiTarget.fromJson(
  1. Map json_
)

Implementation

MultiTarget.fromJson(core.Map json_)
  : this(
      targetIds:
          (json_['targetIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );