value property

String get value

Implementation

String get value {
  switch (this) {
    case PrintAlignment.center:
      return 'center';
    case PrintAlignment.topLeft:
      return 'topLeft';
    case PrintAlignment.topRight:
      return 'topRight';
    case PrintAlignment.bottomLeft:
      return 'bottomLeft';
    case PrintAlignment.bottomRight:
      return 'bottomRight';
    case PrintAlignment.custom:
      return 'custom';
  }
}