PushNotificationProto_ActiveRequest constructor
PushNotificationProto_ActiveRequest({
- Int64? accountId,
- String? operator,
- bool? accepted,
- PushNotificationProto_Tag? tag,
- String? locale,
Implementation
factory PushNotificationProto_ActiveRequest({
$fixnum.Int64? accountId,
$core.String? operator,
$core.bool? accepted,
PushNotificationProto_Tag? tag,
$core.String? locale,
}) {
final $result = create();
if (accountId != null) {
$result.accountId = accountId;
}
if (operator != null) {
$result.operator = operator;
}
if (accepted != null) {
$result.accepted = accepted;
}
if (tag != null) {
$result.tag = tag;
}
if (locale != null) {
$result.locale = locale;
}
return $result;
}