dollar function

String dollar({
  1. int? max,
  2. int? min,
  3. int? fixed,
})

Generate a random dollar amount.

Args: max (int): The maximum value that can be generated. min (int): The minimum value that can be generated. fixed (int): The number of decimal places to return.

Returns: A string that starts with a dollar sign and ends with a number.

Implementation

String dollar({
  int? max,
  int? min,
  int? fixed,
}) {
  num value = floating(
    fixed: fixed,
    max: max,
    min: min,
  );
  return '\$$value';
}