name property

String get name

Implementation

String get name {
  switch (this) {
    case CropStyle.rectangle:
      return 'rectangle';
    case CropStyle.circle:
      return 'circle';
  }
}