JsAlertResponse.alert constructor

JsAlertResponse.alert(
  1. String message,
  2. String okLabel
)

Implementation

factory JsAlertResponse.alert(
  String message,
  String okLabel,
) {
  return JsAlertResponse._(
    message,
    okLabel,
    false,
  );
}