toMap method

Map toMap()

Implementation

Map toMap() {
  return {
    'appKey': appKey,
    'channel': channel ??= "",
    'useIDFA': useIDFA,
    'isProduction': isProduction,
    'debug': debug,
    'clipboardEnable': clipboardEnable,
  }..removeWhere((key, value) => value == null);
}