RuntimeLastError constructor

RuntimeLastError({
  1. String? message,
})

Implementation

RuntimeLastError(
    {
    /// Details about the error which occurred.
    String? message})
    : _wrapped = $js.RuntimeLastError(message: message);