toMap method

Map toMap()

Implementation

Map toMap() {
  Map map = {};
  if (logConfig != null) {
    map['logConfig'] = logConfig!.toMap();
  }
  if (pushConfig != null) {
    map['pushConfig'] = pushConfig!.toMap();
  }
  return map;
}