Projects.fromJson constructor

Projects.fromJson(
  1. Map json_
)

Implementation

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