AccountProto_RetrievePushInfoReply constructor

AccountProto_RetrievePushInfoReply({
  1. Int64? id,
  2. String? pushToken,
  3. PushNotificationProto_PushType? pushType,
})

Implementation

factory AccountProto_RetrievePushInfoReply({
  $fixnum.Int64? id,
  $core.String? pushToken,
  $0.PushNotificationProto_PushType? pushType,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (pushToken != null) {
    $result.pushToken = pushToken;
  }
  if (pushType != null) {
    $result.pushType = pushType;
  }
  return $result;
}