Dependencies.fromJson constructor

Dependencies.fromJson(
  1. List<Object?>? jsonList
)

Implementation

factory Dependencies.fromJson(List<Object?>? jsonList) => Dependencies([
      if (jsonList != null)
        for (final dependency in jsonList)
          fileSystemPathToUri(as<String>(dependency)),
    ]);