ReplHistory constructor

ReplHistory({
  1. String? historyFilePath,
})

Implementation

ReplHistory({String? historyFilePath})
  : _historyFilePath =
        historyFilePath ??
        '${platform.getEnvironmentVariable('HOME') ?? ''}/.lualike_history';