PushNotificationProto_ActiveRequest constructor

PushNotificationProto_ActiveRequest({
  1. Int64? accountId,
  2. String? operator,
  3. bool? accepted,
  4. PushNotificationProto_Tag? tag,
  5. 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;
}