toMap method

Map<String, int> toMap()

Implementation

Map<String, int> toMap() {
  return {
    'open': openConnections,
    'busy': busyConnections,
    'available': availableConnections,
    'max': maxOpenConnections,
  };
}