getSymbols static method

String getSymbols(
  1. bool private,
  2. bool isGenerated
)

Implementation

static String getSymbols(bool private, bool isGenerated) {
  return (private ? '_' : '') + (isGenerated ? '\$' : '');
}