PushNotificationProto_InfoPushRequest constructor
PushNotificationProto_InfoPushRequest({
- Int64? accountId,
- String? cabinetName,
- String? status,
- String? locale,
- PushNotificationProto_PushType? pushType,
Implementation
factory PushNotificationProto_InfoPushRequest({
$fixnum.Int64? accountId,
$core.String? cabinetName,
$core.String? status,
$core.String? locale,
PushNotificationProto_PushType? pushType,
}) {
final $result = create();
if (accountId != null) {
$result.accountId = accountId;
}
if (cabinetName != null) {
$result.cabinetName = cabinetName;
}
if (status != null) {
$result.status = status;
}
if (locale != null) {
$result.locale = locale;
}
if (pushType != null) {
$result.pushType = pushType;
}
return $result;
}