fromLine static method

Dependency? fromLine(
  1. String line
)

Implementation

static Dependency? fromLine(String line) {
  Dependency? dep;

  final parts = line.split(' ');
  if (parts.length == 3) {
    // dep = Dependency(parts[1], parts[2]);
  }
  return dep;
}