getMap method

Map<String, int> getMap()

Implementation

Map<String, int> getMap() {
  final Map<String, int> map = <String, int>{
    'left': left ?? 0,
    'right': right ?? 0,
    'top': top ?? 0,
    'bottom': bottom ?? 0,
  };
  return map;
}