PushNotificationProto_InfoPushRequest constructor

PushNotificationProto_InfoPushRequest({
  1. Int64? accountId,
  2. String? cabinetName,
  3. String? status,
  4. String? locale,
  5. 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;
}