alignmentMap top-level property

Map<String, Map<String, Alignment>> alignmentMap
getter/setter pair

Implementation

Map<String, Map<String, Alignment>> alignmentMap = {
  'center': {
    'center': Alignment.center,
    'left': Alignment.centerLeft,
    'right': Alignment.centerRight,
  },
  'top': {
    'center': Alignment.topCenter,
    'left': Alignment.topLeft,
    'right': Alignment.topRight,
  },
  'bottom': {
    'center': Alignment.bottomCenter,
    'left': Alignment.bottomLeft,
    'right': Alignment.bottomRight,
  },
};