findFlutterSDK function consumer

String findFlutterSDK(
  1. String pathToAndroid
)

Get the path to the local Flutter SDK installation as configured in the root-project/android/local.properties folder.

Either:

Implementation

String findFlutterSDK(String pathToAndroid) =>
    pathToAndroid.verifyExists.toPropertiesFile.asProperties
        .property("flutter.sdk");