noise static method

String noise(
  1. int amount
)

Implementation

static String noise(int amount) {
  if (amount < 0 || amount > 100) {
    throw ArgumentError('Amount must be between 0 and 100, inclusive');
  }
  return '$_filterNoise($amount)';
}