AppCenterOptions.fromMap constructor

AppCenterOptions.fromMap(
  1. Map<String, dynamic> map
)

Implementation

AppCenterOptions.fromMap(Map<String, dynamic> map)
    : sendLogsTimeout = map['sendLogsTimeout'],
      logsBatchSize = map['logsBatchSize'],
      minDelayBetweenRequests = map['minDelayBetweenRequests'],
      logsDbPath = map['logsDbPath'],
      installId = map['installId'],
      device = Device.fromMap(map['device']);