GradleProperties.parse constructor

GradleProperties.parse(
  1. String content
)

Creates a new instance of GradleProperties by parsing given content. Throws ArgumentError if content is empty. Throws FormatException if content is not in valid format.

Implementation

factory GradleProperties.parse(String content) =>
    GradleProperties.fromMap(_parse(content));