Complete the code to enable code obfuscation in Flutter build command.
flutter build apk --[1]Use --obfuscate to enable code obfuscation during Flutter build.
Complete the code to specify the directory for storing debug symbols during obfuscation.
flutter build apk --obfuscate --split-debug-info=[1]The --split-debug-info flag requires a directory path to save debug symbols for stack traces.
Fix the error in the Flutter build command to properly optimize the app for release.
flutter build apk --[1] --obfuscateThe --release flag builds the app optimized for production use.
Fill both blanks to create a Dart function that returns the optimized square of a number using a concise syntax.
int square(int x) => x [1] [2];
Multiplying x by itself returns the square.
Fill all three blanks to create a Dart map comprehension that filters and squares even numbers from a list.
{ [1]: [2] * [2] for (var [3] in numbers if [2] % 2 == 0) }The variable x is used for keys and values, filtering even numbers and squaring them.