CancelOKMessageAlertView constructor
CancelOKMessageAlertView({})
Implementation
CancelOKMessageAlertView({
Key? key,
double? heiht,
String? title,
String? message,
RichText? richTextWidget,
TextAlign? messageAlign,
this.cancelTitle = '取消',
this.cancelHandle,
this.closeHandle,
this.okTitle = '确认',
this.okHandle,
}) : assert(title != null || message != null),
// 不同同时为空
super(
key: key,
height: heiht,
title: title,
message: message,
messageAlign: messageAlign,
);