binaryDescriptorName property

String binaryDescriptorName

Implementation

String get binaryDescriptorName {
  var prefix = lowerCaseFirstLetter(classname);
  if (prefix.endsWith('Base')) {
    prefix = prefix.substring(0, prefix.length - 4);
  }
  return '${prefix}Descriptor';
}