buildSdkSummary2 function

  1. @Deprecated('Use buildSdkSummary() instead')
Future<Uint8List> buildSdkSummary2({
  1. required ResourceProvider resourceProvider,
  2. required String sdkPath,
  3. String? embedderYamlPath,
})

Build summary for SDK at the given sdkPath.

If embedderYamlPath is provided, then libraries from this file are appended to the libraries of the specified SDK.

Implementation

@Deprecated('Use buildSdkSummary() instead')
Future<Uint8List> buildSdkSummary2({
  required ResourceProvider resourceProvider,
  required String sdkPath,
  String? embedderYamlPath,
}) async {
  return buildSdkSummary(
    resourceProvider: resourceProvider,
    sdkPath: sdkPath,
  );
}