name property

String name

Gets the ResizeType as a String.

Implementation

String get name => {
      ResizeType.clip: 'clip',
      ResizeType.crop: 'crop',
      ResizeType.scale: 'scale',
      ResizeType.fill: 'fill',
    }[this]!;