name property

String name

Implementation

String get name {
  switch (this) {
    case MapOrientation.orthogonal:
      return 'orthogonal';
    case MapOrientation.isometric:
      return 'isometric';
    case MapOrientation.staggered:
      return 'staggered';
    case MapOrientation.hexagonal:
      return 'hexagonal';
  }
}