How to perform 'Standard Deviation' in Dart.
// Task: Standard Deviation
// Language: Dart
void standardDeviation() {
// Implementation for Standard Deviation
var result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process Standard Deviation
print("Done");
}