isSetter property

bool get isSetter

Implementation

bool get isSetter {
  return name.endsWith('=') &&
      !const {'[]=', '==', '<=', '>='}.contains(name);
}