decryptSyncTime function Null safety

DateTime decryptSyncTime(
  1. String hex
)

Implementation

DateTime decryptSyncTime(String hex) => DateTime.fromMillisecondsSinceEpoch(
      int.parse(pandoraDecryptResponse(hex, 4)) *
          Duration.millisecondsPerSecond,
    );