fromPath static method

Future<GradleProperties?> fromPath(
  1. String path
)

loads given properties from given file path and returns a future that can be awaited

Implementation

static Future<GradleProperties?> fromPath(String path) =>
    GradleProperties.fromFile(File(path));