HostActionResult.cancelled constructor
HostActionResult.cancelled({})
Implementation
factory HostActionResult.cancelled({
String? requestId,
String? actionName,
String? message,
Map<String, dynamic> data = const <String, dynamic>{},
}) => HostActionResult(
requestId: requestId,
actionName: actionName,
status: HostActionStatus.cancelled,
message: message,
data: data,
);