getMap method

Map? getMap(
  1. Object obj
)

Implementation

Map? getMap(Object obj) {
  Map? m;
  if (obj is Map) {
    m = obj;
  }
  return m;
}