ExtensionLastError constructor

ExtensionLastError({
  1. required String message,
})

Implementation

ExtensionLastError(
    {
    /// Description of the error that has taken place.
    required String message})
    : _wrapped = $js.ExtensionLastError(message: message);