toMap method

Map<String, dynamic> toMap()

Converts the lighthouse settings to a map for easier processing.

Implementation

Map<String, dynamic> toMap() {
  return {
    'projectId': projectId,
    'debug': debug,
  };
}